home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / var / lib / dpkg / info / brltty.postinst < prev    next >
Text File  |  2008-08-06  |  734b  |  36 lines

  1. #! /bin/sh
  2.  
  3. set -e
  4.  
  5. if [ ! -e /etc/brlapi.key ]; then
  6.     mcookie >/etc/brlapi.key
  7.     chmod 0644 /etc/brlapi.key
  8. fi
  9.  
  10. #update-rc.d brltty start 10 23 > /dev/null
  11.  
  12. if [ ! -f /etc/default/brltty ]; then
  13.     cat >/etc/default/brltty <<EOF
  14. # Set RUN_BRLTTY=yes to start brltty at boot time. You may need to
  15. # configure it in /etc/brltty.conf.
  16. RUN_BRLTTY=no
  17. EOF
  18. fi
  19.  
  20. if type update-initramfs >/dev/null 2>&1; then
  21.     update-initramfs -u
  22. fi
  23.  
  24. # Automatically added by dh_installinit
  25. if [ -x "/etc/init.d/brltty" ]; then
  26.     update-rc.d brltty start 25 S . >/dev/null
  27.     if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then
  28.         invoke-rc.d brltty start || exit $?
  29.     else
  30.         /etc/init.d/brltty start || exit $?
  31.     fi
  32. fi
  33. # End automatically added section
  34.  
  35.  
  36.